          SUBROUTINE (INIT.OID,GEN,PRT.ON,SHP.STATS,PRT.OPT,PRT.TGS,CMTD,LSTATS)
** Version# 62 - 10/21/2008 - 12:50pm - KEVINM - main

*** Subroutine - POE.PRINT.RECVR
*-------------------------------------------------------------------------*
*** This is now a wrapper around the proper routine to generate a form
*** either for Eclipse Forms or the "old way".
*-------------------------------------------------------------------------*
*** INIT.OID   - Purchase Order Id                                    [IN]
*** GEN        - Generation                                           [IN]
*** PRT.ON     - Null
*** SHP.STATS  - Order Status                                         [IN]
*** PRT.OPT    - All, NonStock Only, Stock Only                       [IN]
*** PRT.TGS    - Show tagged quantities  :  Only this Order,
***              All Orders                                           [IN]
*** CMTD       - All or Order Quantity (Committed)                    [IN]
*** LSTATS     - Location statuses (value marked list)                (IN)
***              Current statuses are:
***              Primary, Secondary, Floating, Remnant, *Blank*
***              Constant default is Primary.
*-------------------------------------------------------------------------*
*** COMMON Variables Used: LED, LD, PRD, PRD.BR, PLNE
*-------------------------------------------------------------------------*

          * If Eclipse Forms are used, send to Receiver for Eclipse Forms.
          * Otherwise, use old school form.
          IF USE.ECLIPSE.FORMS$ THEN
             POE.PRINT.RECVR.ECL.FORMS INIT.OID,GEN,PRT.ON,SHP.STATS,PRT.OPT,PRT.TGS,CMTD,LSTATS
          END ELSE
             POE.PRINT.RECVR.DEFAULT INIT.OID,GEN,PRT.ON,SHP.STATS,PRT.OPT,PRT.TGS,CMTD,LSTATS
          END

          RETURN
*-------------------------------------------------------------------------*
!KEVINM~10/21/08~12:50
